home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 60754 / 60754.xpi / chrome / content / options.xul < prev    next >
Extensible Markup Language  |  2010-02-03  |  2KB  |  38 lines

  1. <?xml version="1.0"?>
  2.  
  3. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  4.  
  5. <!DOCTYPE window SYSTEM "chrome://ststimer/locale/options.dtd">
  6.  
  7. <prefwindow id="options"
  8.     buttons="none"
  9.     title="&options_window_title;"
  10.     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  11.  
  12.     <prefpane id="options_pane">
  13.  
  14.         <preferences>
  15.             <preference id="sb_icon" name="ststimer.sb_icon" type="bool" instantApply="true"/>
  16.             <preference id="sb_name" name="ststimer.sb_name" type="bool" instantApply="true"/>
  17.             <preference id="sb_mode" name="ststimer.sb_mode" type="int" instantApply="true"/>
  18.         </preferences>
  19.  
  20.         <groupbox>
  21.             <caption label="&options_sb_icon-name;"/>
  22.             <checkbox label="&options_sb_icon_label;" tooltiptext="&options_sb_icon_tooltiptext;" preference="sb_icon"/>
  23.             <checkbox label="&options_sb_name_label;" tooltiptext="&options_sb_name_tooltiptext;" preference="sb_name"/>
  24.         </groupbox>
  25.  
  26.         <groupbox>
  27.             <caption label="&options_sb_mode;"/>
  28.             <radiogroup preference="sb_mode">
  29.                 <radio label="&options_sb_mode_standard_label;" value="0" tooltiptext="&options_sb_mode_standard_tooltiptext;"/>
  30.                 <radio label="&options_sb_mode_classic_label;" value="1" tooltiptext="&options_sb_mode_classic_tooltiptext;"/>
  31.                 <radio label="&options_sb_mode_reduced_label;" value="2" tooltiptext="&options_sb_mode_reduced_tooltiptext;"/>
  32.                 <radio label="&options_sb_mode_onlyDays_label;" value="3" tooltiptext="&options_sb_mode_onlyDays_tooltiptext;"/>
  33.             </radiogroup>
  34.         </groupbox>
  35.  
  36.     </prefpane>
  37.  
  38. </prefwindow>